home *** CD-ROM | disk | FTP | other *** search
/ Supercompiler 1997 / SUPERCOMPILER97.iso / Delphi 3.0 / DATA.Z / CTRLGRID.DPR < prev    next >
Encoding:
Text File  |  1997-01-30  |  336 b   |  17 lines

  1. program CtrlGrid;
  2.  
  3. uses
  4.   Forms,
  5.   CtrlForm in 'CtrlForm.pas' {FmCtrlGrid},
  6.   DM in 'DM.pas' {DM1},
  7.   About in 'About.pas' {FMAboutBox};
  8.  
  9. {$R *.RES}
  10.  
  11. begin
  12.   Application.CreateForm(TFmCtrlGrid, FmCtrlGrid);
  13.   Application.CreateForm(TDM1, DM1);
  14.   Application.CreateForm(TFMAboutBox, FMAboutBox);
  15.   Application.Run;
  16. end.
  17.